-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (63 loc) · 2.52 KB
/
about.html
File metadata and controls
69 lines (63 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/Singer Website/Public/style.css" />
<title>Website Navbar</title>
</head>
<body>
<!-- Navigation -->
<div class="nav-container">
<nav class="navbar">
<h2 id="navbar-logo">IMRAN KHAN</h2>
<div class="menu-toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-menu">
<li><a href="/index.html" class="nav-links">Home</a></li>
<li><a href="./songs.html" class="nav-links">Songs</a></li>
<li>
<a href="./sign-up.html" class="nav-links nav-links-btn">Sign Up</a>
</li>
</ul>
</nav>
</div>
<!-- About section -->
<div class="main" id="about">
<div class="main__container">
<div class="main__img--container">
<div class="main__img--card">
<img src="/Singer Website/Public/images/image1.jpg" alt="image1" />
</div>
</div>
<div class="main__content">
<h1>Imran Khan</h1>
<p>
Imran Khan (born 28 May 1984) is a Dutch-Asian singer and
songwriter. Originally of Pakistani descent, Khan sings in Punjabi
and English. Also known as the "King of Punjabi Urban Music". He
became known in 2007 after his first single "Ni Nachleh", produced
by Eren E. Khan started his music career in his late teens. After
Prestige Records released his debut single Ni Nachleh, he continued
his career by performing in several countries. Khan's first released
single, "Amplifier", was produced by Eren E, was released on 12 July
2009. It received 2 million views on YouTube on it first week of
release and currently has 400 million and counting views on YouTube.
His second single, "Bewafa," was produced by Hakan Ozan and was
released on 30 August 2009; as of January 2020, its music video had
been viewed more than 100 million times on YouTube, following with
many other songs in next years.
</p>
</div>
</div>
</div>
<script src="/Singer Website/JavaScript/app.js"></script>
</body>
</html>